#calendar-container {
    position: relative;
    display: flex;
    width: 100%;
    top: 0%;
    max-width: 1600px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  #calendar-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
  }
  
  /* Sidebar Styles */
  #sidebar {
    width: 200px;
    background-color: #003300;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  
  #year-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  #year-navigation button {
    background-color: #005500;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
  }
  
  #year-navigation button:hover {
    background-color: #007700;
  }
  
  #current-year {
    font-size: 20px;
    font-weight: bold;
  }
  
  #month-navigation {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .month-button {
    background-color: transparent;
    color: white;
    border: none;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .month-button:hover,
  .month-button.active {
    background-color: #007700;
  }
  
  /* Calendar Section Styles */
  #calendar-section {
    flex: 1;
    padding: 20px;
  }
  
  #calendar-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  #month-year {
    font-size: 24px;
    font-weight: bold;
    color: #333;
  }
  
  #calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
  }
  
  .calendar-day-header {
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    background-color: #f0f0f0;
    color: #333;
  }
  
  .calendar-date {
    position: relative;
    min-height: 80px;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .calendar-date:hover {
    background-color: #f9f9f9;
  }
  
  .calendar-date.disabled {
    background-color: #e9e9e9;
    cursor: default;
  }
  
  .calendar-date .date-number {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
  }
  
  .current-date {
    background-color: #034519; /* Different shade of green */
    color: #f7f7f7; /* White text color */
    font-weight: bold; /* Bold text for better visibility */
  }
  
  .current-date .date-number {
    color: #ffffff; /* Ensure the date number is also white */
  }
  
  
  
  /* Event Details Styles */
  #event-details {
    width: 300px;
    background-color: #003300;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  
  #event-date-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
  }
  
  #event-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  #event-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  #event-description {
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Highlighting Event Days */
  .event-day {
    background-color: #019401; /* Bright green background for event days */
    color: #ffffff; /* White text color to contrast with bright background */
    font-weight: bold; /* Bold text for better visibility */
  }
  
  .event-day .date-number {
    color: #ffffff; /* White text for date number */
  }
  
  
  
  #event-date-range {
    font-size: 14px;
    margin-top: auto;
    text-align: center;
    opacity: 0.8;
  }
  
  /* Modal Styles */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  
  .modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    position: relative;
  }
  
  .close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
  }
  
  .modal-content h3 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
  }
  
  #event-form label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
  }
  
  #event-form input,
  #event-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  #event-form button {
    width: 100%;
    padding: 10px;
    background-color: #003300;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
  }
  
  #event-form button:hover {
    background-color: #005500;
  }
  